home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / AppearanceMixed / Makefile.z / Makefile
Encoding:
Makefile  |  2003-08-08  |  170 b   |  15 lines

  1. .SUFFIXES: .java .class
  2. .java.class:
  3.     javac $<
  4.  
  5. default-target: all
  6.  
  7. clean clean-nuke:
  8.     rm -f *.class
  9.  
  10. OBJS = \
  11.     AppearanceMixed.class \
  12.     Tetrahedron.class
  13.  
  14. all: $(OBJS)
  15.